Newer
Older
taehui / qwilight-fe / src / app / [language] / etc / components / TitleItem.tsx
@Taehui Taehui on 17 Mar 487 bytes 2024-03-17 오후 2:12
import Title from "@/components/Title";
import { Col, ListGroupItem, Row } from "reactstrap";

export default function TitleItem({
  title,
  titleColor,
  text,
}: {
  title: string;
  titleColor: string;
  text: string;
}) {
  return (
    <ListGroupItem>
      <Row className="g-0">
        <Col className="m-1" xs="auto">
          <Title title={title} titleColor={titleColor} />
          <br />
          <span>{text}</span>
        </Col>
      </Row>
    </ListGroupItem>
  );
}